home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / modules / nessus-2.2.8.mo / usr / lib / nessus / plugins / apcupsd_overflows.nasl < prev    next >
Text File  |  2005-01-14  |  2KB  |  61 lines

  1. #
  2. # This script was written by Renaud Deraison
  3. #
  4. # GPL
  5. #
  6.  
  7. if(description)
  8. {
  9.   script_id(11484);
  10.   script_bugtraq_id(2070, 6828, 7200);
  11.   script_cve_id("CVE-2001-0040", "CAN-2003-0098", "CAN-2003-0099");
  12.   if ( defined_func("script_xref") ) script_xref(name:"SuSE", value:"SUSE-SA:2003:022");
  13.  
  14.   
  15.   script_version ("$Revision: 1.5 $");
  16.  
  17.   script_name(english:"apcupsd overflows");
  18.  
  19.   desc["english"] = "
  20. The remote apcupsd, according to its version number,
  21. is vulnerable to a buffer overflow which could
  22. allow an attacker to gain a root shell on this host.
  23.  
  24. *** Nessus solely relied on the version number of the 
  25. *** remote server, so this might be a false positive
  26.  
  27. Risk factor : High";
  28.  
  29.   script_description(english:desc["english"]);
  30.  
  31.   summary["english"] = "Checks the version of apcupsd";
  32.   script_summary(english:summary["english"]);
  33.  
  34.   script_category(ACT_GATHER_INFO);
  35.  
  36.   script_copyright(english:"This script is Copyright (C) 2003 Renaud Deraison");
  37.   family["english"] = "Gain root remotely";
  38.   script_family(english:family["english"]);
  39.   script_dependencie("find_service.nes", "apcnisd_detect.nasl");
  40.   script_require_ports("Services/apcnisd", 7000);
  41.  
  42.   exit(0);
  43. }
  44.  
  45. port = get_kb_item("Services/apcnisd");
  46. if (! port) port = 7000;
  47. if (! get_port_state(port)) exit(0);
  48.  
  49. soc = open_sock_tcp(port);
  50. if(!soc)exit(0);
  51. req = raw_string(0x00, 0x06) + "status";
  52. send(socket:soc, data:req);
  53. r = recv(socket:soc, length:4096);
  54. if("APC" >< r && "MODEL" >< r)
  55. {
  56.   r = strstr(r, "RELEASE");
  57.   if(ereg(pattern:"RELEASE.*: (3\.([0-7]\..*|8\.[0-5][^0-9]|10\.[0-4])|[0-2]\..*)", string:r))
  58.        security_hole(port);
  59.  
  60. }
  61.